/* GLOBAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: #1d3320;
  background-color: #F9F8F6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 40px 0;
}

.section.scroll-animate {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Fix for mobile - ensure content is visible */
@media (max-width: 768px) {
  .section.scroll-animate {
    opacity: 1 !important;
    transform: none !important;
  }
  
  .section {
    display: block !important;
    visibility: visible !important;
  }
}

/* Enhanced Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
  }
  60% {
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(90deg, #00AEEF, #00A651);
  color: #ffffff;
  font-size: 13px;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(0, 174, 239, 0.2);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* HEADER */
.main-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #1a1a1a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.6s ease-out;
  border-bottom: 1px solid rgba(0, 174, 239, 0.1);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00AEEF, #00A651);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.5);
}

.logo-text h1 {
  font-size: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #00AEEF, #00A651);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.logo-text p {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 8px 4px;
  transition: all 0.3s ease;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #00AEEF, #00A651);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.main-nav a:hover {
  color: #00AEEF;
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 100%;
  left: 0;
}

/* LANGUAGE SWITCH */
.lang-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  border: 2px solid rgba(0, 174, 239, 0.3);
  background: transparent;
  color: #1a1a1a;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.1), rgba(0, 166, 81, 0.1));
  border-color: #00AEEF;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.2);
  color: #00AEEF;
}

.lang-btn.active {
  background: linear-gradient(135deg, #00AEEF, #00A651);
  border-color: #00AEEF;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 174, 239, 0.3);
}

.lang-btn.active {
  background-color: #F0EDEE;
  color: #2C666E;
  border-color: #F0EDEE;
  box-shadow: 0 6px 16px rgba(240, 237, 238, 0.3);
  transform: scale(1.05);
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #1a1a1a;
  font-size: 26px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(0, 174, 239, 0.1);
  color: #00AEEF;
}

/* HERO (full background with overlayed text) */
.hero-full {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px) clamp(18px, 5vw, 48px);
  isolation: isolate;
  border-radius: 0;
  animation: popUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

/* Hero Video Background */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}


.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.15), rgba(0, 166, 81, 0.1));
  z-index: 1;
}

.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-full .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-full-content {
  max-width: 720px;
  color: #FDFCF9;
  animation: slideInFromBottom 0.9s ease 0.3s backwards;
  text-align: center;
  margin: 0 auto;
  padding: clamp(14px, 4vw, 22px);
}

.hero-full-title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
  margin-bottom: 12px;
  animation: slideInFromBottom 1s ease 0.5s backwards;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-full-sub {
  font-size: clamp(16px, 2.6vw, 20px);
  opacity: 0.95;
  margin-bottom: 18px;
  animation: slideInFromBottom 1.1s ease 0.7s backwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideInFromBottom 1.2s ease 0.9s backwards;
}

.hero-actions .btn-primary {
  background-color: #F2C94C;
  color: #1d2b24;
}

.hero-actions .btn-primary:hover {
  background-color: #d6ad33;
  box-shadow: 0 10px 26px rgba(242, 201, 76, 0.35);
}

.hero-actions .btn-outline {
  border: 1px solid #F2C94C;
  color: #F2C94C;
}

.hero-actions .btn-outline:hover {
  background-color: rgba(242, 201, 76, 0.2);
  color: #1d2b24;
}

.hero-dot-row {
  display: inline-flex;
  gap: 6px;
  margin-top: 14px;
}

.hero-dot-row .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot-row .dot.active {
  background: #F0FDEE;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .hero-full {
    min-height: 64vh;
    padding: 40px 0;
  }

  .hero-actions {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero-full {
    min-height: 58vh;
  }

  .hero-full-title {
    font-size: clamp(28px, 7vw, 36px);
  }
}


/* BUTTONS */
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #00AEEF, #00A651);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(0, 174, 239, 0.5);
  transform: translateY(-3px) scale(1.05);
}

.btn-light {
  background-color: #F0FDEE;
  color: #2C666E;
}

.btn-light:hover {
  box-shadow: 0 8px 20px rgba(44, 102, 110, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #00AEEF;
  background: transparent;
  color: #00AEEF;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #00AEEF, #00A651);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  width: 100%;
}

.btn-outline:hover {
  color: #fff;
  border-color: #00A651;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* GRID LAYOUTS */
.grid-2-3 {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
}

.grid-main-side {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
}

/* CARDS */
.card {
  background-color: #FDFCF9;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00AEEF, #00A651);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  box-shadow: 0 12px 40px rgba(0, 174, 239, 0.2);
  transform: translateY(-6px);
}

.section-title {
  background: linear-gradient(135deg, #00AEEF, #00A651);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 600;
}

/* GALLERY */
.gallery-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.gallery-card .section-title {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.gallery-viewport {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 16px;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(44, 102, 110, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-viewport:hover {
  box-shadow: 0 16px 40px rgba(44, 102, 110, 0.25);
  transform: translateY(-4px);
}

.gallery-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: #f0f0f0;
}

/* Fade animation for images */
.gallery-slide img.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gallery-caption {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 10;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(44, 102, 110, 0.8);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-nav:hover {
  background-color: #2C666E;
  box-shadow: 0 6px 20px rgba(44, 102, 110, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 16px; }
.gallery-nav.next { right: 16px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 0;
}

.gallery-dots .dot {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.gallery-dots .dot:hover {
  opacity: 0.8;
}

.card-footer-center {
  text-align: center;
  margin-top: 14px;
}

.card-footer-left {
  text-align: left;
  margin-top: 14px;
}

/* COMMITTEE */
.member-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.member-green { 
  background: linear-gradient(135deg, #e4f4e7, #d0ead8);
  border-left: 4px solid #00A651;
}
.member-lightgreen { 
  background: linear-gradient(135deg, #e9f7ef, #d8f0e3);
  border-left: 4px solid #00AEEF;
}
.member-orange { 
  background: linear-gradient(135deg, #ffe9d5, #ffd9b3);
  border-left: 4px solid #F2C94C;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 100px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-20deg);
  transition: right 0.6s ease;
}

.member-card:hover::before {
  right: 100%;
}

.member-card:hover {
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.25);
  transform: translateX(6px) scale(1.02);
}

.member-avatar {
  position: relative;
}

.member-avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00AEEF, #00A651);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.member-card:hover .member-avatar::before {
  opacity: 1;
}

.member-avatar img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
  transition: transform 0.3s ease;
}

.member-card:hover .member-avatar img {
  transform: scale(1.1);
}

.member-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.member-info p {
  font-size: 13px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #00AEEF, #00A651);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  padding: 4px 10px;
  margin-bottom: 4px;
  box-shadow: 0 2px 8px rgba(0, 174, 239, 0.3);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* SERVICES */
.section-header {
  margin-bottom: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.service-card {
  background-color: #FDFCF9;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.05), rgba(0, 166, 81, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 174, 239, 0.2);
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(0, 174, 239, 0.3);
}

.service-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 174, 239, 0.3));
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}

.service-card h4 {
  font-size: 15px;
  margin-bottom: 3px;
}

.service-card p {
  font-size: 13px;
  color: #566;
}

/* BLOGS */
.section-blogs {
  margin-top: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.blog-card {
  background-color: #FDFCF9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  box-shadow: 0 12px 32px rgba(44, 102, 110, 0.2);
  transform: translateY(-8px);
}

.blog-card img {
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-content {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-tag {
  display: inline-block;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
}

.blog-tag-orange {
  background-color: #ffe8d5;
  color: #b45000;
}

.blog-tag-green {
  background-color: #e2f5e8;
  color: #11602a;
}

.blog-date {
  font-size: 11px;
  color: #788;
}

.blog-content h4 {
  font-size: 15px;
}

.blog-content p {
  font-size: 13px;
}

.blog-content .btn {
  margin-top: 6px;
  align-self: flex-start;
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-card {
  padding: 16px 18px 18px;
}

.sidebar-title {
  font-size: 18px;
  color: #125b22;
  margin-bottom: 10px;
}

.sidebar-body {
  font-size: 13px;
}

.notice-item {
  margin-bottom: 4px;
}

/* PROJECTS */
.section-projects {
  background-color: #fdfdfd;
}

.section-projects .section-title {
  margin-bottom: 6px;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(90deg, #00AEEF, #00A651);
  color: #ffffff;
  padding-top: 40px;
  box-shadow: 0 -4px 20px rgba(0, 174, 239, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 26px;
}

.site-footer h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.site-footer p,
.site-footer li {
  font-size: 13px;
  color: #ffffff;
  opacity: 0.95;
}

.site-footer ul {
  list-style: none;
  margin-top: 6px;
}

.site-footer li + li {
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 10px 16px 12px;
  font-size: 12px;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid-2-3,
  .grid-main-side,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-caption {
    font-size: 30px;
  }

  .hero-image {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 58px;
    right: 0;
    left: 0;
    background: linear-gradient(90deg, #125b22, #e59b2d);
    padding: 10px 16px 14px;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .main-nav.open {
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .hero-caption {
    font-size: 24px;
    bottom: 30px;
  }

  .hero-intro-inner h2 {
    font-size: 30px;
  }

  .top-bar {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 300px;
  }

  .logo-text h1 {
    font-size: 17px;
  }

  .logo-text p {
    font-size: 11px;
  }

  .hero-intro {
    padding: 28px 0 34px;
  }

  .button {
    font-size: 13px;
  }
}
/* ------- visible makeover ------- */
.modern-header {padding:14px 20px;}
.nav-pill { padding:6px 14px;border-radius:50px;background:rgba(240,237,238,.3);}
.nav-pill:hover{background:#F0FDEE;color:#2C666E;}

.hero-overlay{position:relative;}
.hero-overlay::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.45);}
.hero-text-center{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:#fff;text-align:center;}

.btn-white-round{background:#F0FDEE;color:#2C666E;border-radius:50px;padding:12px 26px;font-weight:600;}

.committee-horizontal{display:flex;gap:20px;flex-wrap:wrap;justify-content:center;}
.new-shadow{box-shadow:0 6px 16px rgba(0,0,0,0.08)!important;padding:12px;border-radius:14px;}

.gallery-wide{display:flex;align-items:center;justify-content:center;gap:14px;}
.round-nav{width:42px;height:42px;border-radius:50%;background:#2C666E;color:#fff;border:none;}
.gallery-big{max-width:100%;border-radius:10px;}
.alt-bg{background:#f1f7f0;padding:40px 0;}

.section-title-center{text-align:center;margin-bottom:20px;font-size:28px;}

/* --- SERVICE PAGE --- */

.service-tabs{
  text-align:center;
  margin-top:20px;
}
.service-tabs .tab{
  display:inline-block;
  margin:4px;
  padding:8px 18px;
  border-radius:6px;
  background:#eee;
  cursor:pointer;
}
.service-tabs .active{
  background:#2C666E;
  color:#fff;
}

.service-grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.service-box{
  background:white;
  padding:20px;
  border-radius:10px;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.process-grid{
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}

.process-step{
  background:white;
  width:200px;
  padding:25px;
  border-radius:10px;
  text-align:center;
}
.step-num{
  background:#2C666E;
  color:white;
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 10px;
}
.contact-service{
  background:white;
  padding:20px;
  width:100%;
  border-radius:10px;
}

/* ========== SCHEME PAGE ========== */

.scheme-tabs {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.scheme-tabs .tab {
  padding: 8px 18px;
  border: 1px solid #2C666E;
  border-radius: 6px;
  color: #2C666E;
  font-size: 15px;
  background: #fff;
  text-decoration: none;
  transition: 0.2s;
}

.scheme-tabs .tab.active,
.scheme-tabs .tab:hover {
  background: #2C666E;
  color: #fff;
}


/* Section Headings */
.section-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2C666E;
}

.badge-green {
  background: #e6f5f7;
  padding: 3px 8px;
  color: #2C666E;
  font-size: 13px;
  border-radius: 6px;
}


/* Main Scheme Card */
.scheme-card-full {
  background: #fff;
  border: 1px solid #e0e6e0;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.scheme-card-full h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #145214;
}

.scheme-list {
  margin-left: 20px;
  margin-top: 10px;
}

.scheme-list li {
  list-style: disc;
}


/* Detail Box */
.scheme-box {
  background: #f7fff7;
  border-left: 4px solid #1c5e1c;
  padding: 10px 15px;
  border-radius: 6px;
  margin-top: 15px;
}


/* Empty Info */
.empty-info {
  color: #777;
  font-size: 15px;
  margin: 10px 0 30px;
}


/* HOW TO APPLY */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 20px;
}

.apply-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
}

.apply-box h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #155915;
}

/* ========== BLOG PAGE ========== */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap:25px;
}

.blog-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  overflow:hidden;
  transition:0.2s;
}

.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 4px 14px rgba(0,0,0,0.1);
}

.blog-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.blog-content{
  padding:18px;
}

.blog-content h3{
  font-size:18px;
  margin-bottom:5px;
  color:#144914;
}

.blog-meta{
  font-size:14px;
  color:#555;
  display:flex;
  justify-content:space-between;
  margin:10px 0;
}

.blog-tag{
  padding:4px 10px;
  font-size:13px;
  border-radius:5px;
  margin-bottom:8px;
  display:inline-block;
}

.blog-tag-orange{ background:#fde9d6; color:#d36712; }
.blog-tag-green{ background:#e4f8e4; color:#196a19; }
.blog-tag-blue{ background:#dde9ff; color:#0945a2; }

/* ---------- GALLERY Page ---------- */
.gallery-filter{
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.filter-btn{
  padding:8px 14px;
  border:1px solid #145a14;
  border-radius:8px;
  background:#fff;
  cursor:pointer;
  font-size:14px;
  color:#145a14;
}

.filter-btn.active,
.filter-btn:hover{
  background:#145a14;
  color:#fff;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:25px;
}

.gallery-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  overflow:hidden;
  transition:0.25s;
}

.gallery-card:hover{
  transform:translateY(-4px);
  box-shadow:0 6px 12px rgba(0,0,0,0.12);
}

.gallery-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.gallery-content{
  padding:15px;
}

.gallery-content h3{
  font-size:16px;
  margin-bottom:4px;
  color:#184b18;
}

.gallery-meta{
  display:flex;
  justify-content:space-between;
  font-size:13px;
  margin-top:8px;
  color:#777;
}

.gallery-tag{
  display:inline-block;
  padding:3px 8px;
  font-size:13px;
  border-radius:5px;
  margin-bottom:5px;
}

.gallery-tag-orange{ background:#fde9d9; color:#9b4c06; }
.gallery-tag-green{ background:#e6f7e4; color:#1e601c; }

/* CONTACT PAGE */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(460px,1fr));
  gap:30px;
}

.contact-card{
  background:#fff;
  border:1px solid #dde5dd;
  padding:25px;
  border-radius:15px;
}

.contact-card h3{
  color:#155c15;
  margin-bottom:15px;
}

.contact-card p{
  font-size:15px;
  color:#333;
  margin-bottom:12px;
}

.badge{
  background:#ffd9b4;
  color:#a05000;
  display:inline-block;
  padding:6px 12px;
  border-radius:6px;
  font-weight:600;
}

.map-footer{
  padding:8px 0 0;
}

.link-map{
  color:#145a14;
  font-weight:600;
}

.contact-social{
  text-align:left;
  max-width:500px;
}

.social-links a{
  background:#fff;
  border:1px solid #dcecd8;
  padding:8px 14px;
  margin-right:10px;
  border-radius:8px;
  display:inline-block;
}

/* PAGE HERO */
.page-hero {
  background: #f8f9f5;
  padding: 70px 0;
  border-bottom: 1px solid #e3e3e3;
}

.page-hero h1 {
  color: #25612b;
  font-size: 38px;
  margin-bottom: 10px;
}

.page-hero p {
  color: #444;
  font-size: 18px;
}



/* GRID BASIC */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* ABOUT GRID WITH NOTICE */
.about-grid-with-notice {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  align-items: start;
}

.about-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* ABOUT CARD */
.about-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-card h3 {
  color: #1b5e20;
  font-size: 22px;
  margin-bottom: 18px;
}

.about-card p {
  padding: 4px 0;
  font-size: 17px;
  color: #333;
}

.about-card strong {
  font-weight: 600;
  color: #1b5e20;
}



/* WIDE SECTION */
.alt-bg {
  background: #fafcf7;
  padding-top: 30px;
}

.about-wide-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

.about-wide-card h3 {
  color: #1b5e20;
  margin-bottom: 10px;
}

.about-wide-card ul li {
  padding: 4px 0;
  font-size: 16px;
  color: #222;
}



/* MEMBER SECTION */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin-top: 30px;
}

.member-card {
  background: #fdfefe;
  padding: 20px 15px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  text-align: center;
}

.member-card img {
  width: 110px;
  height: 110px;
  border-radius: 60px;
  border: 4px solid #fff;
  object-fit: cover;
}

.member-card h4 {
  margin-top: 15px;
  font-size: 19px;
  color: #1c5a24;
}

.member-card span {
  font-size: 16px;
  display: block;
  color: #25612b;
  font-weight: 600;
}



/* NOTICE SECTION CARD */
.notice-section-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.notice-section-title {
  color: #1b5e20;
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8e8e8;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.notice-item-card {
  background: #f8f9f8;
  padding: 18px;
  border-radius: 10px;
  border-left: 4px solid #1b5e20;
  transition: all 0.3s ease;
  position: relative;
}

.notice-item-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateX(4px);
}

.notice-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notice-urgent {
  background: #ff4444;
  color: #fff;
}

.notice-info {
  background: #00AEEF;
  color: #fff;
}

.notice-warning {
  background: #ff9800;
  color: #fff;
}

.notice-item-card h4 {
  color: #1b5e20;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.notice-date,
.notice-time {
  font-size: 13px;
  color: #666;
  margin: 4px 0;
}

.notice-content {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-top: 10px;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .about-grid{
      grid-template-columns: 1fr;
  }
  .about-grid-with-notice {
    grid-template-columns: 1fr;
  }
  .about-cards-wrapper {
    grid-template-columns: 1fr;
  }
  .notice-section-card {
    position: static;
    max-height: none;
  }
  .member-grid{
      grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 600px){
  .member-grid{
      grid-template-columns: 1fr;
  }
}

/* HORIZONTAL MEMBER CARDS */
.member-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(380px,1fr));
  gap:25px;
  margin-top:35px;
}

.member-card{
  background:#F7FBF6;
  border:1px solid #E0E8E0;
  display:flex;
  align-items:center;
  padding:20px 25px;
  border-radius:18px;
  box-shadow:0 3px 6px rgba(0,0,0,0.05);
  gap:20px;
}


/* LEFT PROFILE IMAGE */
.member-card img{
  width: 120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #fff;
  box-shadow:0 3px 6px rgba(0,0,0,0.13);
}


/* MIDDLE NAME TEXT */
.member-info{
  flex:1;
}

.member-info h4{
  font-size:20px;
  font-weight:600;
  color:#0A4D1F;
  margin-bottom:4px;
  line-height:1.3;
}

.member-info span{
  font-size:16px;
  font-weight:600;
  color:#0A4D1F;
}


/* RIGHT TAG + PHONE COLUMN */
.member-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
}


/* BIG GREEN TAG */
.member-tag{
  background:#0e5f25;
  padding:15px 32px;
  border-radius:45px;
  font-size:17px;
  font-weight:600;
  color:white;
}


/* phone */
.member-phone{
  font-size:15px;
  color:#555;
}


/* RESPONSIVE */
@media(max-width:550px){
  .member-card{
    flex-direction:column;
    text-align:center;
  }
  .member-right{
    align-items:center;
  }
}

.official-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:35px;
  margin-top:40px;
}

.official-card{
  background:#f6fdf6;
  border-radius:12px;
  padding:40px 20px;
  text-align:center;
  border:1px solid rgba(0,0,0,0.08);
  transition:0.3s;
}

.official-card:hover{
  transform:translateY(-8px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.official-card img{
  width:140px;
  height:140px;
  border-radius:50%;
  border:6px solid white;
  object-fit:cover;
  margin-bottom:20px;
}

.official-card h3{
  font-size:22px;
  margin:5px 0;
  color:#144a27;
}

.role{
  display:inline-block;
  padding:6px 18px;
  background:#144a27;
  color:#fff;
  border-radius:20px;
  margin:10px 0;
  font-size:18px;
}

.phone,.term{
  font-size:18px;
  color:#0d4020;
  margin-top:8px;
}

@media(max-width:900px){
  .official-grid{
    grid-template-columns: repeat(2,1fr);
  }
}
@media(max-width:600px){
  .official-grid{
    grid-template-columns:1fr;
  }
}

/* final code of about */
/* officials title */
#officials h2 {
  color: #115311;
  margin-bottom: 40px;
  font-size: 32px;
}

/* grid layout */
.official-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 35px;
  justify-content: center;
}

/* card */
.official-card {
  background: #f8fff8;
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  border: 1px solid #e7f3e7;
  transition: all .35s ease;
  min-height: 380px;
}

/* hover animation */
.official-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* square image */
.official-card img {
  width: 170px;
  height: 180px;
  display: block;
  margin: 0 auto 15px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #bbb;
  transition: 0.4s;
}

/* image hover zoom */
.official-card:hover img {
  transform: scale(1.05);
}

/* names */
.official-card h3 {
  color: #0f4d0f;
  font-size: 20px;
  margin: 12px 0 10px;
  line-height: 1.5;
}

/* role */
.official-card .role {
  background: #0f4d0f;
  padding: 7px 18px;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
}

/* phone & term */
.phone,
.term {
  color: #444;
  margin: 4px 0;
  font-size: 15px;
}

#employees h2 {
  text-align:center;
  color:#0f4d0f;
  margin-bottom:40px;
}

/* Ensure card height fits */
.gallery-card {
  height: 100%;
}

/* viewport area */
.gallery-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  width: 100%;
}

/* Slides wrapper */
.gallery-slide {
  display: flex;
  gap: 18px;
  transition: transform .5s ease;
  padding: 10px;
}

/* Single gallery item */
.gallery-item {
  min-width: 200px;
  text-align: center;
}

/* image inside item */
.gallery-item img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* caption inside item */
.gallery-caption {
  margin-top: 6px;
  font-size: 14px;
  color: #333;
}

/* arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 60, 0, .7);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav.prev { left: 5px; }
.gallery-nav.next { right: 5px; }

.gallery-nav:hover {
  background: rgba(0, 60, 0, .9);
}

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.gallery-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c0d9c0;
  cursor: pointer;
}

.gallery-dots .dot.active {
  background: #0c5c0c;
}

/* Fade animation */
.gallery-item img.fade-in {
  animation: galleryFade .45s ease;
}

@keyframes galleryFade {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}

.logo-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden; /* important */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* OR cover if you want */
}

/* grid */
.service-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
  gap:28px;
  margin-top:25px;
}

/* box */
.service-card{
  background:#fff;
  border-radius:18px;
  border:1px solid #ddeedd;
  padding:35px 35px;
  transition:.3s;
}
.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

/* icon */
.service-icon{
  font-size:48px;
  margin-bottom:5px;
}

/* heading */
.service-card h3{
  color:#0a3c0a;
  font-size:26px;
  margin:8px 0;
}

/* green tag */
.status{
  background:#0a3c0a;
  color:#fff;
  padding:6px 18px;
  border-radius:30px;
  font-size:15px;
  margin-bottom:14px;
  display:inline-block;
}

/* list */
.service-card ul{
  margin-top:10px;
  margin-bottom:18px;
}
.service-card ul li{
  margin-bottom:5px;
  line-height:1.4;
}

.process-grid4{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:25px;
  margin-top:25px;
}

.process-step{
  background:#fff;
  padding:25px;
  border-radius:12px;
  border:1px solid #dae9da;
}

.step-num{
  background:#0d510d;
  color:#fff;
  width:45px;
  height:45px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  margin:0 auto 12px;
}
/* ─── SERVICES ─────────────────────── */
.service-grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
  gap:32px;
  margin-top:25px;
}

.service-box{
  background:#fff;
  padding:35px;
  border-radius:18px;
  border:1px solid #dcecdc;
  transition:.3s;
  position:relative;
}

.service-box:hover{
  transform:translateY(-4px);
  box-shadow:0 4px 14px rgba(0,0,0,.10);
}

/* icon left */
.service-box h3{
  font-size:26px;
  color:#094509;
  margin-bottom:12px;
  display:flex;
  align-items:center;
  gap:12px;
}

/* status pill */
.service-status{
  background:#0a470a;
  color:#fff;
  padding:6px 18px;
  font-size:14px;
  border-radius:30px;
  display:inline-block;
  margin-left:12px;
}

/* list */
.service-box ul{
  margin:15px 0;
}
.service-box ul li{
  margin-bottom:6px;
}

/* bottom text */
.service-box p{
  margin-top:6px;
}
 
/* new form code in the contact */
/* ================== GRIEVANCE FORM ================== */

.grievance-section {
  background: #f9fafb;
}

.grievance-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: #083344;
}

.grievance-header .sub-title {
  font-size: 18px;
  color: #555;
  margin-top: 5px;
}

.grievance-form {
  background: #ffffff;
  padding: 40px;
  margin-top: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.btn-submit {
  background: #2563eb;
  color: #fff;
  padding: 12px 26px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #1e40af;
}

/* Responsive */
@media (max-width: 900px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .grievance-form {
    padding: 25px;
  }
}
/* ================== GRIEVANCE ANIMATIONS ================== */

/* Section entry animation */
.grievance-section {
  animation: fadeSlideUp 0.9s ease forwards;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover lift */
.grievance-form {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.grievance-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Input focus animation */
.form-group input,
.form-group select,
.form-group textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Label subtle animation */
.form-group label {
  transition: color 0.3s ease;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
  color: #2563eb;
}

/* Button animation */
.btn-submit {
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-submit:hover::after {
  opacity: 1;
}

.btn-submit:active {
  transform: scale(0.96);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .grievance-section {
    animation-duration: 0.6s;
  }
}
/* ================== PROFESSIONAL SELECT DROPDOWN ================== */

.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  padding: 12px 42px 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 15px;
  cursor: pointer;
}

/* Custom arrow */
.select-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

/* Hover & focus */
.custom-select select:hover {
  border-color: #2563eb;
}

.custom-select select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* Disabled / placeholder style */
.custom-select select option[value=""] {
  color: #888;
}

/* Mobile fix */
@media (max-width: 768px) {
  .custom-select select {
    padding-right: 36px;
  }
}

/* ========== NOTICE PAGE STYLES ========== */
.notice-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.notice-main-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Notice Filter Tabs */
.notice-filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.filter-tab {
  padding: 10px 20px;
  border: 2px solid #00AEEF;
  border-radius: 25px;
  background: #fff;
  color: #00AEEF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover {
  background: rgba(0, 174, 239, 0.1);
  transform: translateY(-2px);
}

.filter-tab.active {
  background: linear-gradient(135deg, #00AEEF, #00A651);
  color: #fff;
  border-color: #00A651;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}

/* Notice List */
.notice-list-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notice-card-page {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.notice-card-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #00AEEF, #00A651);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.notice-card-page:hover::before {
  transform: scaleY(1);
}

.notice-card-page:hover {
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.15);
  transform: translateY(-4px);
  border-color: rgba(0, 174, 239, 0.3);
}

.notice-header-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.notice-badge-page {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notice-urgent-page {
  background: #ff4444;
  color: #fff;
}

.notice-info-page {
  background: #00AEEF;
  color: #fff;
}

.notice-warning-page {
  background: #ff9800;
  color: #fff;
}

.notice-date-page {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.notice-card-page h3 {
  color: #1b5e20;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.notice-meta-page {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.notice-time-page,
.notice-location-page {
  display: flex;
  align-items: center;
  gap: 5px;
}

.notice-description-page {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.notice-footer-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e8e8e8;
}

.notice-author-page {
  font-size: 13px;
  color: #666;
}

/* Notice Sidebar */
.notice-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quick-notice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-notice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #f8f9f8;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.quick-notice-item:hover {
  background: #e8f5e8;
  transform: translateX(4px);
}

.quick-notice-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.quick-notice-badge.urgent {
  background: #ff4444;
  color: #fff;
}

.quick-notice-badge.info {
  background: #00AEEF;
  color: #fff;
}

.quick-notice-badge.warning {
  background: #ff9800;
  color: #fff;
}

.quick-notice-link {
  flex: 1;
  font-size: 14px;
  color: #1b5e20;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-notice-link:hover {
  color: #00AEEF;
}

/* Notice Preview in About Page */
.notice-preview {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notice-preview-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.notice-preview-item {
  padding: 12px;
  background: #f8f9f8;
  border-radius: 8px;
  border-left: 3px solid #1b5e20;
}

.notice-preview-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.notice-preview-badge.urgent {
  background: #ff4444;
  color: #fff;
}

.notice-preview-badge.info {
  background: #00AEEF;
  color: #fff;
}

.notice-preview-badge.warning {
  background: #ff9800;
  color: #fff;
}

.notice-preview-title {
  font-size: 14px;
  color: #1b5e20;
  font-weight: 500;
  margin: 0;
}

/* Hide notices based on filter */
.notice-card-page[data-category]:not([data-category*="all"]) {
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .notice-page-grid {
    grid-template-columns: 1fr;
  }
  
  .notice-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .notice-filter-tabs {
    justify-content: center;
  }
  
  .filter-tab {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .notice-card-page {
    padding: 20px;
  }
  
  .notice-card-page h3 {
    font-size: 18px;
  }
  
  .notice-meta-page {
    flex-direction: column;
    gap: 8px;
  }
}

/* ========== OFFICIALS HOME SECTION ========== */
.official-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.official-card-home {
  background: #f8fff8;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #e7f3e7;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.official-card-home:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 174, 239, 0.3);
}

.official-card-home img {
  width: 160px;
  height: 180px;
  display: block;
  margin: 0 auto 20px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.official-card-home img.img-contain {
  object-fit: contain;
  background-color: #f5f5f5;
}

.official-card-home:hover img {
  transform: scale(1.05);
  border-color: rgba(0, 174, 239, 0.5);
}

.official-card-home h3 {
  color: #0f4d0f;
  font-size: 18px;
  margin: 15px 0 10px;
  line-height: 1.4;
  font-weight: 600;
}

.official-card-home .role {
  background: linear-gradient(135deg, #00AEEF, #00A651);
  padding: 8px 20px;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 174, 239, 0.3);
  transition: all 0.3s ease;
}

.official-card-home:hover .role {
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.4);
  transform: scale(1.05);
}

/* Responsive styles for officials home */
@media (max-width: 900px) {
  .official-grid-home {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .official-card-home img {
    width: 140px;
    height: 160px;
  }
}

@media (max-width: 600px) {
  .official-grid-home {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .official-card-home {
    padding: 25px 15px;
  }
  
  .official-card-home img {
    width: 120px;
    height: 140px;
  }
  
  .official-card-home h3 {
    font-size: 16px;
  }
  
  .official-card-home .role {
    font-size: 13px;
    padding: 6px 16px;
  }
}

 /* new code foe jama kharch tab */
    
  .dropdown{
    position:relative;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#014421;
    min-width:250px;
    list-style:none;
    padding:0;
    margin:0;
    z-index:9999;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:12px 15px;
    color:#fff;
    text-decoration:none;
}

.dropdown-menu li a:hover{
    background:#026b35;
}

.dropdown:hover .dropdown-menu{
    display:block;
}
/* Soi Suvidha Dropdown */

.main-nav ul li.dropdown{
    position:relative;
}

.main-nav ul li .dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:260px;
    background:#ffffff;
    box-shadow:0 4px 15px rgba(0,0,0,0.15);
    z-index:9999;
    padding:0;
}

.main-nav ul li .dropdown-menu li{
    display:block;
    width:100%;
}

.main-nav ul li .dropdown-menu li a{
    display:block;
    padding:12px 15px;
    color:#222;
    text-decoration:none;
    white-space:nowrap;
}

.main-nav ul li .dropdown-menu li a:hover{
    background:#f2f2f2;
}

.main-nav ul li.dropdown:hover .dropdown-menu{
    display:block;
}

  